Skip to main content
Version: 5.x.x

ExtractResponseType


import { ExtractResponseType } from "@hyper-fetch/core"

Description

Defined in types/fetch.types.ts:10

Preview

type ExtractResponseType<T> = T extends Request<infer  D, any, any, any, any, any, any, any, any, any> ? D : never;

Structure

T extends Request<infer D, any, any, any, any, any, any, any, any, any> ? D : never